.block_generic_fixed {
	text-align: left;
}

.block_generic_fixed:lang(ar) {
	text-align: right;
}

.block_generic_fixed .title {
	font-weight: bold;
	font-size: 14px;
	line-height: 1.75;
}

.block_generic_fixed .block_info {
	margin-top: 5px;
	font-size: 12px;
}

.block_generic_fixed .block_info:first-child {
	margin-top: 10px;
}

.block_generic_fixed .block_info i {
	color: #606060;
}

.block_generic_fixed .brief {
	text-align: justify;
	margin: 10px 0 0 0;
}

.block_generic_fixed .image_container {
	direction: ltr;
	border-radius: 5px;
	margin: 0 0 10px 0;
	overflow: hidden;
	position: relative;
}

.block_generic_fixed .image_container .cover_image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center center;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.block_generic_fixed .image_container .cover_image:after {
	content: "\e003";
	font-family: 'Glyphicons Halflings';
	color: #f8f8f8;
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 34px;
	justify-content: center;
	background: #014a94;
	opacity: 0;
	z-index: 1;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.block_generic_fixed .image_container .cover_image:hover {
	transform: scale(1.1);
}

.block_generic_fixed .image_container .cover_image:hover:after {
	opacity: 0.75;
}

.block_generic_fixed i {
	color: #808080;
}